home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / Misc Utils / ViewIt™ 2.2 Shareware / Resources / fDemo.Rsrc / fDemo.Rsrc.adf / PICT_1558_TCgrep.png < prev    next >
Portable Network Graphic  |  1993-09-19  |  86KB  |  816x1056  |  8-bit (256 colors)
Labels: bulletin board | reckoner | sky
OCR: FIND string can be a "Regular Expression" composed of subpatterns such [abcd] matches single instance of any one of the characters within brackets (Note: "lgnore Case" option does not apply to characters within brackets) [^abcd] matches single instance of any character NOT within the brackets [a-d] matches - single instance of any character between and "d [abcd]* matches any number of consecutive characters belonging T whatever subpattern is defined to the immediate left of II*|I a.cd (period) matches any other character (use match \<abcd\> restricts match to whole words (can mix with non-word subpatterns) abcd match must occur at the beginning of line abcd$ match must occur at the end of a line Example: Find identifiers beginning with "p" or "p" <PpA Za-z0-9 1*I> or simply p[A-Za-z0-9 :: ...